home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form3
- Caption = "Browse For Folder"
- ClientHeight = 4530
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 3825
- LinkTopic = "Form3"
- ScaleHeight = 4530
- ScaleWidth = 3825
- StartUpPosition = 3 'Windows Default
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 210
- TabIndex = 4
- Top = 435
- Width = 3360
- End
- Begin VB.CommandButton Command2
- Caption = "&Cancel"
- Height = 375
- Left = 2400
- TabIndex = 3
- Top = 4080
- Width = 1095
- End
- Begin VB.CommandButton Command1
- Caption = "&Ok"
- Height = 375
- Left = 1230
- TabIndex = 2
- Top = 4080
- Width = 1095
- End
- Begin VB.DirListBox Dir1
- Height = 3015
- Left = 180
- TabIndex = 0
- Top = 855
- Width = 3360
- End
- Begin VB.Label Label1
- Caption = "Select the folder you want to begin the search"
- Height = 210
- Left = 120
- TabIndex = 1
- Top = 135
- Width = 4425
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public drivepath As String
- Private Sub Command1_Click()
- 'drivepath = Dir1.path
- Unload Me
- Form1.Txtpath = drivepath
- End Sub
- Private Sub Command2_Click()
- Unload Me
- End Sub
- Private Sub Dir1_Change()
- drivepath = Dir1.path
- End Sub
- Private Sub Drive1_Change()
- On Error Resume Next
- Dir1.path = Drive1.Drive
- End Sub
- Private Sub Form_Load()
- Dir1.path = "c:\"
- End Sub
-